home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 25 / AMIGAplus Sonderheft 25 (2000)(Falke)(DE)(Track 1 of 4)[!].iso / Tools / SFX-Player / songplayer / arexx / Status.rexx < prev    next >
OS/2 REXX Batch file  |  2000-05-08  |  243b  |  17 lines

  1. /* Simple rexx test file for SongPlayer */
  2.  
  3. options results
  4. options FailAt 100
  5. address 'SONGPLAYER.1'
  6.  
  7. drop result
  8. get_time
  9. secs = result
  10. get_selected
  11. sel = result
  12. get_state
  13. sta = result
  14. say 'time='secs' secs  state='sta'  selected='sel
  15.  
  16. exit
  17.